home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / mblast32 / data.z / abouttb.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-09-09  |  1.9 KB  |  64 lines

  1. VERSION 4.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About"
  5.    ClientHeight    =   1275
  6.    ClientLeft      =   5520
  7.    ClientTop       =   3930
  8.    ClientWidth     =   3690
  9.    Height          =   1620
  10.    Icon            =   "abouttb.frx":0000
  11.    Left            =   5490
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1275
  16.    ScaleWidth      =   3690
  17.    ShowInTaskbar   =   0   'False
  18.    Top             =   3615
  19.    Width           =   3750
  20.    Begin VB.Label lblInfo 
  21.       Caption         =   "74451.1245@compuserve.com"
  22.       Height          =   255
  23.       Index           =   4
  24.       Left            =   180
  25.       TabIndex        =   2
  26.       Top             =   840
  27.       Width           =   2805
  28.    End
  29.    Begin VB.Label lblInfo 
  30.       Caption         =   "Author: Cris Williams"
  31.       Height          =   255
  32.       Index           =   1
  33.       Left            =   180
  34.       TabIndex        =   1
  35.       Top             =   600
  36.       Width           =   2805
  37.    End
  38.    Begin VB.Label lblInfo 
  39.       Caption         =   "Message Blaster/Taskbar Icon Sample"
  40.       BeginProperty Font 
  41.          name            =   "MS Sans Serif"
  42.          charset         =   0
  43.          weight          =   700
  44.          size            =   8.25
  45.          underline       =   0   'False
  46.          italic          =   0   'False
  47.          strikethrough   =   0   'False
  48.       EndProperty
  49.       Height          =   255
  50.       Index           =   0
  51.       Left            =   180
  52.       TabIndex        =   0
  53.       Top             =   240
  54.       Width           =   3375
  55.    End
  56. Attribute VB_Name = "frmAbout"
  57. Attribute VB_Creatable = False
  58. Attribute VB_Exposed = False
  59. Option Explicit
  60. Private Sub Form_Load()
  61.    On Error Resume Next
  62.    Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 3
  63. End Sub
  64.